GET api/sms/received?from[0]={from[0]}&from[1]={from[1]}&to[0]={to[0]}&to[1]={to[1]}
Gives you a list of your received SMS messages filtered by given URI parameters if given
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| from |
Filter by sender name or phone number, case insensitive, accepts multiple, optional |
Collection of string |
None. |
| to |
Filter by recipient phone number, case insensitive, accepts multiple, optional |
Collection of string |
None. |
Body Parameters
None.
Response Information
Resource Description
List of SMS messages
Collection of IncomingSMSDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
SMS message ID |
string |
None. |
| To |
Destination phone number |
string |
None. |
| Prefix |
Destination prefix, if any |
string |
None. |
| Created |
Date when the SMS message was received |
date |
None. |
| CreatedDate |
Date when the SMS message was received |
date |
Deprecated: Use Created instead |
| Prio |
SMS message priority, normal (1) or high (2) |
integer |
Deprecated: No longer makes a difference, use 1 if any Range: inclusive between 1 and 2 |
| From |
SMS message sender name or phone number |
string |
Required |
| Message |
SMS message contents |
string |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "sample string 1",
"To": "sample string 2",
"Prefix": "sample string 3",
"Created": "2025-12-16T03:28:03.7661157+00:00",
"CreatedDate": "2025-12-16T03:28:03.7661157+00:00",
"Prio": 2,
"From": "sample string 5",
"Message": "sample string 6"
},
{
"ID": "sample string 1",
"To": "sample string 2",
"Prefix": "sample string 3",
"Created": "2025-12-16T03:28:03.7661157+00:00",
"CreatedDate": "2025-12-16T03:28:03.7661157+00:00",
"Prio": 2,
"From": "sample string 5",
"Message": "sample string 6"
}
]